 .function-content {
            max-width: 800px;
            margin: 20px auto;
            padding: 20px;
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            line-height: 1.6;
        }
        .function-content h3 {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #F73859;
        }
        .function-content p {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: #ffffff;
        }
        .function-content ul {
            list-style-type: disc;
            padding-left: 20px;
            margin-bottom: 15px;
        }
        .function-content ul li {
            margin-bottom: 8px;
            font-size: 1.25rem;
        }
        .function-content table {
            width: 100%;
            border-collapse: collapse;
            margin: 15px 0;
            background-color: rgba(255, 255, 255, 0.05);
        }
        .function-content table th, .function-content table td {
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 10px;
            text-align: center;
            color: #ffffff;
        }
        .function-content table th {
            background-color: #F73859;
        }
        .function-content .note {
            font-size: 1rem;
            font-style: italic;
            color: #ffffff;
            opacity: 0.8;
        }

.function-graph {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border: 1px solid #ddd;
    border-radius: 5px;
}